home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 25 / AACD 25.iso / AACD / Magazine / Online / QMail / source / prioq.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-04-15  |  276 b   |  16 lines

  1. #ifndef PRIOQ_H
  2. #define PRIOQ_H
  3.  
  4. #include "datetime.h"
  5. #include "gen_alloc.h"
  6.  
  7. struct prioq_elt { datetime_sec dt; unsigned long id; } ;
  8.  
  9. GEN_ALLOC_typedef(prioq,struct prioq_elt,p,len,a)
  10.  
  11. extern int prioq_insert();
  12. extern int prioq_min();
  13. extern void prioq_delmin();
  14.  
  15. #endif
  16.